projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ebd53b
)
Deny all warnings when building cargo
author
Alex Crichton
<alex@alexcrichton.com>
Mon, 28 Jul 2014 20:57:57 +0000
(13:57 -0700)
committer
Alex Crichton
<alex@alexcrichton.com>
Mon, 28 Jul 2014 21:01:05 +0000
(14:01 -0700)
This helps keep the build a little cleaner and any breakage that happens due to
rust changing will likely be mitigated by nightlies.
src/cargo/lib.rs
patch
|
blob
|
history
diff --git
a/src/cargo/lib.rs
b/src/cargo/lib.rs
index b90ebe6e16370a80385a54fa530cb17fb2195051..50925ae7c87d5dbc1360bf4a9651c9515d209430 100644
(file)
--- a/
src/cargo/lib.rs
+++ b/
src/cargo/lib.rs
@@
-3,6
+3,7
@@
#![feature(macro_rules, phase)]
#![feature(default_type_params)]
+#![deny(warnings)]
extern crate debug;
extern crate term;